summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2023-06-28 07:35:16 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2023-06-28 07:39:15 +0200
commit295fc7d0f8f0b6158307c5c9b11a60516f9eb221 (patch)
treeb80f91f05df4d70861d8b216e59a9f1ea5c707cd
parentx64: cpu_wait: Remove magic values (diff)
downloadyuzu-295fc7d0f8f0b6158307c5c9b11a60516f9eb221.tar
yuzu-295fc7d0f8f0b6158307c5c9b11a60516f9eb221.tar.gz
yuzu-295fc7d0f8f0b6158307c5c9b11a60516f9eb221.tar.bz2
yuzu-295fc7d0f8f0b6158307c5c9b11a60516f9eb221.tar.lz
yuzu-295fc7d0f8f0b6158307c5c9b11a60516f9eb221.tar.xz
yuzu-295fc7d0f8f0b6158307c5c9b11a60516f9eb221.tar.zst
yuzu-295fc7d0f8f0b6158307c5c9b11a60516f9eb221.zip
-rw-r--r--src/common/x64/cpu_wait.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common/x64/cpu_wait.cpp b/src/common/x64/cpu_wait.cpp
index ea16c8490..41d385f59 100644
--- a/src/common/x64/cpu_wait.cpp
+++ b/src/common/x64/cpu_wait.cpp
@@ -47,6 +47,16 @@ static void TPAUSE() {
const auto edx = static_cast<u32>(tsc >> 32);
asm volatile("tpause %0" : : "r"(RequestC02State), "d"(edx), "a"(eax));
}
+
+static void MWAITX() {
+ static constexpr auto EnableWaitTimeFlag = 1U << 1;
+ static constexpr auto RequestC1State = 0U;
+
+ // monitor_var should be aligned to a cache line.
+ alignas(64) u64 monitor_var{};
+ asm volatile("monitorx" : : "a"(&monitor_var), "c"(0), "d"(0));
+ asm volatile("mwaitx" : : "a"(RequestC1State), "b"(PauseCycles), "c"(EnableWaitTimeFlag));
+}
#endif
void MicroSleep() {